home *** CD-ROM | disk | FTP | other *** search
/ Sunrise Express Series 285 / Sunrise Express Series 285.iso / pc / FIRST.Dxr / 00001_CheckEnvironment.ls next >
Encoding:
Text File  |  1998-05-11  |  316 b   |  17 lines

  1. on exitFrame
  2.   if the quickTimePresent = 0 then
  3.     set theplatform to the platform
  4.     case theplatform of
  5.       "Macintosh,68k", "Macintosh,PowerPC":
  6.         go("QTM")
  7.       "Windows,32":
  8.         go("QTW")
  9.       "Windows,16":
  10.         go("NORUN")
  11.     end case
  12.   else
  13.     startmovievr()
  14.     go(1, "JR")
  15.   end if
  16. end
  17.